:root {
  --bg: #020408; 
  --blue: #6ee7ff;
  --yellow: #fbbf24;
  --text: #cbd5e1;
}
  
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 
        
body {
  background: radial-gradient(circle at center, #07121a 0%, #020408 70%);
  color: var(--text);
  font-family: "Inter", sans-serif; 
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Force scrollbar to always appear */
html, body {
  min-height: 100vh;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) #1a1a1a;
}

/* WebKit scrollbars */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 16px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #1a1a1a;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 6px;
  border: none;
}

.center-image {
  position: relative;       
  width: 100%;
  height: 100vh;
  overflow: hidden;       
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Center logo */
.main-img {
  position: relative;     
  z-index: 2;               
  width: 70vw;              
  max-width: 1200px;         
  height: auto;
  opacity: 0;
  animation: zoomCenter 1.5s ease-out forwards;
}

@keyframes zoomCenter {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Side images */
.side-img.left,
.side-img.right {
  position: absolute;
  opacity: 0;       
  z-index: 1;              
}

/* Left side */
.side-img.left {
  top: 50%;               
  left: -7vw;               
  width: 18vw;
  max-width: 2000px;
  animation: slideLeftIn 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

/* Right side */
.side-img.right {
  top: 30%;                 
  right: -7vw;              
  width: 18vw;
  max-width: 2000px;
  animation: slideRightIn 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

/* Side image animations */
@keyframes slideLeftIn {
  0% { transform: translateX(-50px) scale(0.6); opacity: 0; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes slideRightIn {
  0% { transform: translateX(50px) scale(0.6); opacity: 0; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

/* WRAPPER */
.wrapper {
    width: 100%;
    margin: auto;
    flex: 1;
    padding-right: 30px;
    padding-left: 30px;
}

/* NAV */
nav {
  position: fixed; 
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: rgba(98, 204, 237, 0.1);
  height: 55px;
  width: 100%; 
  top: 0;
  left: 0;
  z-index: 1000;
   backdrop-filter: blur(8px);         
  -webkit-backdrop-filter: blur(8px); 
}

nav img {
	  height: 20px;
}

.logo {
  font-family: "Orbitron";
  color: var(--blue);
}

.nav-links a {
  margin-left: 20px;
  font-size: 16px;
  color: #6ee7ff;
  text-decoration: none;
  opacity: 0.8;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffb300; 
}

#about {
  scroll-margin-top: 100px; 
}

#experience {
  scroll-margin-top: 100px; 
}

#designers {
 scroll-margin-top: 100px;
}


/* HERO */
.hero {
  justify-content: space-between; 
  align-items: flex-start;      
  padding: 120px 0;
  gap: 50px;   
  flex: 1;
}

.hero-left {
  width: 50%;
}

/* ABOUT */
h1 {
  font-size: 30px;
  color: var(--blue);
  padding-bottom: 20px;
  padding-left: 40px;
}

.abouttxt {
  padding-left: 70px;   
  line-height: 1.6;
  font-size: 20px;
  color: var(--text);
}

.design-1 {
margin-top: -80px;
margin-left: -13px;
}

/* EXPERIENCE SECTION */
.experience-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* each column */
.event-left,
.event-center,
.event-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* RIGHT alignment (title + address look nicer right aligned) */
.event-right {
  align-items: flex-end;
  text-align: right;
}

/* LEFT alignment */
.event-left {
  align-items: flex-start;
  text-align: left;
  margin-top: 170px;
}

/* center column */
.event-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 100px;
  padding: 40px;
  position: relative;
  overflow: visible;
  z-index: 1;
  align-items: center;
}

.event-center::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: -20%; 
  z-index: -1;
	
	transform: translate(-50%, -50%);
	top: 50%;
    left: 50%;
	width: 100%;
	aspect-ratio: 1 / 1;
	
  background: radial-gradient(circle,
    rgba(110, 231, 255, 0.25) 0%,
    rgba(110, 231, 255, 0.10) 25%,
    rgba(0, 0, 0, 0) 40%
  );
} 

/* spacing fixes */
.show {
  font-size: 30px;
  color: var(--blue);
  margin-bottom: 50px;
  padding-right: 40px;
  white-space: nowrap;
}

.address {
  font-size: 20px;
  line-height: 1.6;
  padding-right: 70px;
}

.address::first-line {
  color: var(--blue);
}

.mad-logo {
  width: 140px;
  height: auto;
  margin-left: 70px;
  margin-top: 0px; 
}

.btn {
  padding: 8px 16px;
  background: var(--blue);    
  color: black; 
  cursor: pointer;
  border-radius: 10px; 
  transition: all 0.3s ease;
  font-size: 16px;
  gap: 20px;
  margin-top: 18px;
  margin-left: 100px;
}

.btn:hover {
  background: var(--yellow);
  transform: scale(1.05);   
  box-shadow: 0 0 30px 8px rgba(110, 231, 255, 0.3);
}

/* CENTERED DATE & TIME */
.date-time {
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;
  text-align: center; 
}

.date-time .date {
  font-size: 50px;
  color: var(--yellow);  
}

.date-time .time {
  font-size: 30px;
  color: var(--text);
}

.event-left,
.event-right,
.event-center {
  position: relative;
}

.design-left {
  margin-top: -15px;
}

.design-right {
  margin-right: 33px;
  margin-bottom: -188px;
}

/* IMAGE */
.image-block {
  padding: 0 20px; 
}

.image-block img {
  width: 100%;
  margin-top: 80px;
  margin-bottom: 40px;
  border-radius: 4px;
  box-shadow: 0 0 30px 8px rgba(110, 231, 255, 0.6);
}

.sponsors {
  padding-top: 30px;
}

.sponsors-row {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 60px;                 
  padding-top: 30px;
  Padding-bottom: 40px;	
}

.sponsors-row section {
  padding: 0;                
}

.sponsors-row img {
  width: 180px;     
  height: auto;
}

.IH-sponsors img {
  border-radius: 4px;
}

.MA-sponsors img {
  border-radius: 4px;
}

/* DESIGNERS */
.designers {
  margin-top: 40px;
}

.designers h1 {
  color: var(--blue);
  margin-bottom: 20px;
}

.backg {
  position: absolute;
  top: -1.8%;              
  left: 50%;
  transform: translateX(-35%);
  width: 500px;      
  height: 102.2%;
  z-index: 0;          
  pointer-events: none;
  max-width: none;
}

.names {
  position: relative;  
  display: flex;
  flex-direction: column;
  gap: .416rem;          
  z-index: 1;          
}
.names a {
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transform: translateX(var(--shift, 0));
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Odd names → hover blue */
.names a:nth-child(odd):hover {
    color: var(--blue);
}
 
/* Even names → hover yellow */
.names a:nth-child(even):hover {
    color: var(--yellow);
} 

.names a:hover {
  transform: translateX(var(--shift)) scale(1.03);
}

.names a:nth-of-type(1) { --shift: 95px; }
.names a:nth-of-type(2) { --shift: 55px; }
.names a:nth-of-type(3) { --shift: 0px; }
.names a:nth-of-type(4) { --shift: 60px; }
.names a:nth-of-type(5) { --shift: 15px; }
.names a:nth-of-type(6) { --shift: 30px; }
.names a:nth-of-type(7) { --shift: 114px; }
.names a:nth-of-type(8) { --shift: 163px; }
.names a:nth-of-type(9) { --shift: 85px; }
.names a:nth-of-type(10) { --shift: 7px; }
.names a:nth-of-type(11) { --shift: 20px; }
.names a:nth-of-type(12) { --shift: -49px; }
.names a:nth-of-type(13) { --shift: 7px; }
.names a:nth-of-type(14) { --shift: 89px; }
.names a:nth-of-type(15) { --shift: 165px; }
.names a:nth-of-type(16) { --shift: 105px; }
.names a:nth-of-type(17) { --shift: 60px; }
.names a:nth-of-type(18) { --shift: 160px; }
.names a:nth-of-type(19) { --shift: 93px; }
.names a:nth-of-type(20) { --shift: -5px; }

/* FOOTER */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: rgba(98, 204, 237, 0.1);
}

footer .footer-right {
  display: flex;         
  gap: 15px;              
}

footer .footer-right img {
  width: 25px;            
  height: 25px;
  transition: transform 0.3s, opacity 0.3s;
}

footer .footer-right a img:hover {
  transform: scale(1.1);  
}

footer .footer-left {
  color: var(--blue);
  font-weight: bold; 
}


.social-icont img: {
  content: url("images/tic_icon.png"); /* default */
}

.social-icont img:hover {
  content: url("images/ticOrange_logo.png"); /* colored on hover */
}

.social-iconi img: {
  content: url("images/insta_icon.png");
}

.social-iconi img:hover {
  content: url("images/instaOrange_logo.png");
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .aboutus {
    flex-direction: column;
  }
}
